home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games Extra 1996 September / Amiga Games Extra CD-ROM 9-1996.iso / userbox / publicdomain / vim-4.2 / src / unix.h < prev    next >
C/C++ Source or Header  |  1996-06-17  |  6KB  |  271 lines

  1. /* vi:set ts=4 sw=4:
  2.  *
  3.  * VIM - Vi IMproved        by Bram Moolenaar
  4.  *
  5.  * Do ":help uganda"  in Vim to read copying and usage conditions.
  6.  * Do ":help credits" in Vim to see a list of people who contributed.
  7.  */
  8.  
  9. #include <stdio.h>
  10. #include <ctype.h>
  11. #include <sys/types.h>
  12. #include <sys/stat.h>
  13.  
  14. #ifdef HAVE_STDLIB_H
  15. # include <stdlib.h>
  16. #endif
  17.  
  18. #ifdef HAVE_UNISTD_H
  19. # include <unistd.h>
  20. #endif
  21.  
  22. #ifdef HAVE_LIBC_H
  23. # include <libc.h>                    /* for NeXT */
  24. #endif
  25.  
  26. /*
  27.  * SVR4 may be defined for linux, but linux isn't SVR4
  28.  */
  29. #if defined(SVR4) && defined(__linux__)
  30. # undef SVR4
  31. #endif
  32.  
  33. /*
  34.  * Sun defines FILE on SunOS 4.x.x, Solaris has a typedef for FILE
  35.  */
  36. #if defined(sun) && !defined(FILE)
  37. # define SOLARIS
  38. #endif
  39.  
  40. /*
  41.  * Using getcwd() is preferred, because it checks for a buffer overflow.
  42.  * Don't use getcwd() on systems do use system("sh -c pwd").  There is an
  43.  * autoconf check for this.
  44.  * Use getcwd() anyway if getwd() isn't present.
  45.  */
  46. #if defined(HAVE_GETCWD) && !(defined(BAD_GETCWD) && defined(HAVE_GETWD))
  47. # define USE_GETCWD
  48. #endif
  49.  
  50. #ifndef __ARGS
  51. # if defined(__STDC__) || defined(__GNUC__)
  52. #  define __ARGS(x) x
  53. # else
  54. #  define __ARGS(x) ()
  55. # endif
  56. #endif
  57.  
  58. /* always use unlink() to remove files */
  59. #define vim_remove(x) unlink((char *)(x))
  60.  
  61. /* The number of arguments to a signal handler is configured here. */
  62. /* It used to be a long list of almost all systems. Any system that doesn't
  63.  * have an argument??? */
  64. /* #if defined(SVR4) || (defined(SYSV) && defined(ISC)) || defined(_AIX) || defined(__linux__) || defined(ultrix) || defined(__386BSD__) || defined(__FreeBSD__) || defined(__bsdi__) || defined(POSIX) || defined(NeXT)  || defined(__alpha) || defined(apollo) */
  65. #if !defined(SOME_SYSTEM)
  66. # define SIGHASARG
  67. #endif
  68.  
  69. /* List 3 arg systems here. I guess __sgi, please test and correct me. jw. */
  70. #if defined(__sgi)
  71. # define SIGHAS3ARGS
  72. #endif
  73.  
  74. #ifdef SIGHASARG
  75. # ifdef SIGHAS3ARGS
  76. #  define SIGPROTOARG   (int, int, struct sigcontext *)
  77. #  define SIGDEFARG(s)  (s, sig2, scont) int s, sig2; struct sigcontext *scont;
  78. #  define SIGDUMMYARG   0, 0, (struct sigcontext *)0
  79. # else
  80. #  define SIGPROTOARG   (int)
  81. #  define SIGDEFARG(s)  (s) int s;
  82. #  define SIGDUMMYARG   0
  83. # endif
  84. #else
  85. # define SIGPROTOARG   (void)
  86. # define SIGDEFARG(s)  ()
  87. # define SIGDUMMYARG
  88. #endif
  89.  
  90. #if HAVE_DIRENT_H
  91. # include <dirent.h>
  92. # define NAMLEN(dirent) strlen((dirent)->d_name)
  93. #else
  94. # define dirent direct
  95. # define NAMLEN(dirent) (dirent)->d_namlen
  96. # if HAVE_SYS_NDIR_H
  97. #  include <sys/ndir.h>
  98. # endif
  99. # if HAVE_SYS_DIR_H
  100. #  include <sys/dir.h>
  101. # endif
  102. # if HAVE_NDIR_H
  103. #  include <ndir.h>
  104. # endif
  105. #endif
  106.  
  107. #if !defined(HAVE_SYS_TIME_H) || defined(TIME_WITH_SYS_TIME)
  108. # include <time.h>            /* on some systems time.h should not be
  109.                                included together with sys/time.h */
  110. #endif
  111. #ifdef HAVE_SYS_TIME_H
  112. # include <sys/time.h>
  113. #endif
  114.  
  115. #include <signal.h>
  116.  
  117. #if defined(DIRSIZ) && !defined(MAXNAMLEN)
  118. # define MAXNAMLEN DIRSIZ
  119. #endif
  120.  
  121. #if defined(UFS_MAXNAMLEN) && !defined(MAXNAMLEN)
  122. # define MAXNAMLEN UFS_MAXNAMLEN    /* for dynix/ptx */
  123. #endif
  124.  
  125. #if defined(NAME_MAX) && !defined(MAXNAMLEN)
  126. # define MAXNAMLEN NAME_MAX            /* for Linux before .99p3 */
  127. #endif
  128.  
  129. /*
  130.  * Note: if MAXNAMLEN has the wrong value, you will get error messages
  131.  *         for not being able to open the swap file.
  132.  */
  133. #if !defined(MAXNAMLEN)
  134. # define MAXNAMLEN 512                /* for all other Unix */
  135. #endif
  136.  
  137. #ifdef HAVE_ERRNO_H
  138. # include <errno.h>
  139. #endif
  140.  
  141. #ifdef HAVE_PWD_H
  142. # include <pwd.h>
  143. #endif
  144.  
  145. #ifdef __COHERENT__
  146. # undef __ARGS
  147. #endif /* __COHERENT__ */
  148.  
  149. #ifndef W_OK
  150. # define W_OK 2            /* for systems that don't have W_OK in unistd.h */
  151. #endif
  152.  
  153. /*
  154.  * Unix system-dependent filenames
  155.  */
  156.  
  157. #ifndef USR_EXRC_FILE
  158. # define USR_EXRC_FILE    "$HOME/.exrc"
  159. #endif
  160.  
  161. #ifndef USR_VIMRC_FILE
  162. # define USR_VIMRC_FILE    "$HOME/.vimrc"
  163. #endif
  164.  
  165. #ifdef USE_GUI
  166. # ifndef USR_GVIMRC_FILE
  167. #  define USR_GVIMRC_FILE    "$HOME/.gvimrc"
  168. # endif
  169. #endif
  170.  
  171. #ifndef EXRC_FILE
  172. # define EXRC_FILE        ".exrc"
  173. #endif
  174.  
  175. #ifndef VIMRC_FILE
  176. # define VIMRC_FILE        ".vimrc"
  177. #endif
  178.  
  179. #ifdef USE_GUI
  180. # ifndef GVIMRC_FILE
  181. #  define GVIMRC_FILE    ".gvimrc"
  182. # endif
  183. #endif
  184.  
  185. #ifdef VIMINFO
  186. # ifndef VIMINFO_FILE
  187. #  define VIMINFO_FILE    "$HOME/.viminfo"
  188. # endif
  189. #endif /* VIMINFO */
  190.  
  191. #ifndef DEF_BDIR
  192. # ifdef OS2
  193. #  define DEF_BDIR        ".,c:/tmp,~/tmp,~/"
  194. # else
  195. #  define DEF_BDIR        ".,~/tmp,~/"    /* default for 'backupdir' */
  196. # endif
  197. #endif
  198.  
  199. #ifndef DEF_DIR
  200. # ifdef OS2
  201. #  define DEF_DIR        ".,~/tmp,c:/tmp,/tmp"
  202. # else
  203. #  define DEF_DIR        ".,~/tmp,/tmp"    /* default for 'directory' */
  204. # endif
  205. #endif
  206.  
  207. #ifdef OS2
  208. #define TMPNAME1        "$TMP/viXXXXXX"
  209. #define TMPNAME2        "$TMP/voXXXXXX"
  210. #define TMPNAMELEN        128
  211. #else
  212. #define TMPNAME1        "/tmp/viXXXXXX"
  213. #define TMPNAME2        "/tmp/voXXXXXX"
  214. #define TMPNAMELEN        15
  215. #endif
  216.  
  217. /*
  218.  * Unix has plenty of memory, use large buffers
  219.  */
  220. #define CMDBUFFSIZE    1024        /* size of the command processing buffer */
  221. #define MAXPATHL    1024        /* Unix has long paths and plenty of memory */
  222.  
  223. #define CHECK_INODE                /* used when checking if a swap file already
  224.                                     exists for a file */
  225. #define USE_MOUSE                /* include mouse support */
  226.  
  227. #ifndef MAXMEM
  228. # define MAXMEM            512            /* use up to 512Kbyte for buffer */
  229. #endif
  230. #ifndef MAXMEMTOT
  231. # define MAXMEMTOT        2048        /* use up to 2048Kbyte for Vim */
  232. #endif
  233.  
  234. #define BASENAMELEN        (MAXNAMLEN - 5)
  235.  
  236. /* memmove is not present on all systems, use memmove, bcopy, memcpy or our
  237.  * own version */
  238. /* Some systems have (void *) arguments, some (char *). If we use (char *) it
  239.  * works for all */
  240. #ifdef USEMEMMOVE
  241. # define vim_memmove(to, from, len) memmove((char *)(to), (char *)(from), len)
  242. #else
  243. # ifdef USEBCOPY
  244. #  define vim_memmove(to, from, len) bcopy((char *)(from), (char *)(to), len)
  245. # else
  246. #  ifdef USEMEMCPY
  247. #   define vim_memmove(to, from, len) memcpy((char *)(to), (char *)(from), len)
  248. #  else
  249. #   define VIM_MEMMOVE        /* found in alloc.c */
  250. #  endif
  251. # endif
  252. #endif
  253.  
  254. /* codes for xterm mouse event */
  255. #define MOUSE_LEFT        0x00
  256. #define MOUSE_MIDDLE    0x01
  257. #define MOUSE_RIGHT        0x02
  258. #define MOUSE_RELEASE    0x03
  259. #define MOUSE_SHIFT        0x04
  260. #define MOUSE_ALT        0x08
  261. #define MOUSE_CTRL        0x10
  262. #define MOUSE_DRAG        (0x40 | MOUSE_RELEASE)
  263.  
  264. #define MOUSE_CLICK_MASK    0x03
  265.  
  266. #define NUM_MOUSE_CLICKS(code) \
  267.     ((((code) & 0xff) >> 6) + 1)
  268.  
  269. #define SET_NUM_MOUSE_CLICKS(code, num) \
  270.     (code) = ((code) & 0x3f) + (((num) - 1) << 6)
  271.